* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

header {
    width: 100%;
    height: 90px;
    margin: auto;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    background-color: white;
    color: black;
   
}


.logo {
      
    margin-left: 2%;
    width: 300px;
    float:left;
    
}

li {
    list-style: none;
    
}

li a {
    color: black;
    text-decoration: none;
    margin-right: 40px;
    
    

}

.navbar {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px; 
    margin-left: 28%;
   
   
    
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.nav-branding {
    font-size: 6rem;   
}

.nav-link {
    font-size: 25px;
    position: relative;
    text-transform: uppercase;
    transition: color 0.3s ease;   
}

.nav-link:hover {
    color: #ff4d4d; 
}

.nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #ff4d4d;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.nav-link::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    background-color: #ff4d4d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.nav-link:hover::before,
.nav-link:hover::after{
    transform: scaleX(1);
    
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 30px;
    height: 4px; 
    margin: 5px auto;
    background-color: black;
    transition: all 0.3s ease-in-out; 
}

@media (max-width:768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        display: flex;
        align-items: center;
        position: fixed;
        left: -100%;
        top: 100px;
        gap: 0;
        background-color: black;
        color: whitesmoke;
        width: 100% ; 
        height: auto;
        text-align: center;
        transition: 0.3s;
        border-radius: 25px;
        border: solid black 1px;
        font-weight:200 ;
        z-index: 999;
        transition: left 0.3s ease-in-out;
 
       
    }
    
    .nav-link{
        color: whitesmoke;
        padding: 20px;
        font-size:10px ;
        text-transform: uppercase; 
    }

    .nav-item {
        margin: 16px 0 16px 0 ;
    }

    .nav-menu.active {
        left: 0;
        
    }

    .nav-branding {
        width: 100%;
        margin-top: 10px;
       font-family: Verdana, Geneva, Tahoma, sans-serif;
       font-size: large;

    }

    .logo {
      
        height: 100px;
        margin-left: 8%;
        margin-top: -20px;
        margin-bottom: 0;
        width: 200px;   
        float:left;
        background-attachment: fixed;
    }
}

/*banner*/
#banner {
    position: relative;
    width: 100%;
    height: 70vh; /* Responsive height based on viewport */
    min-height: 400px;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(about2.webp);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #banner {
        height: 60vh;
        min-height: 300px;
        background-attachment: none;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    #banner {
        background-attachment: scroll; /* Disable parallax on mobile */
    }
}
/*banner2 contact page*/
.banner2{
    width: 100%;
    height: 80vh;
    background: url(banner2.png);
    background-size: cover;
    background-position: 69%;
   
    margin-top: -150px;

    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; 
   
}
.banner2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1; 
}
.banner3{
    width: 100%;
    height: 100vh;
    background: url(banner3.png);
    background-size: cover;
    background-position: 69%;
    border-radius: 10px;
    margin-top: -150px;
    /* background-attachment: fixed; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; 
}

.banner-text {
    text-align: center;
    position: relative; 
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 2s ease-out forwards;
    
}

.banner-text h2{
    letter-spacing: 5px;
    font-weight: bold;
    font-size: 25px;
    color: whitesmoke;
   
}

.banner-text h1{
   
    font-size: 40px;
    color:rgb(250, 26, 26);
}

.banner-text p {
    font-size: 18px;
    color: #f0f0f0;
    margin-top: 15px;
    margin-bottom: 30px;
}

 #btn{
    position: relative;
   
    text-decoration: none;
    border: 2px solid#ff4d4d;
    font-size: 18px;
    color:#ff4d4d;
    
    display: inline-block;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;

    background-color:transparent;
    
   
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;

    width: 250px;
    height: 60px;

}

#btn::before{
    position: absolute;
    content: "";
    border: 1px solid transparent;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:#ff4d4d;
    z-index: -1;
    transition: transform 0.7s;
    transform-origin:0 0 ;
    transition-timing-function: cubic-bezier(0.5,1.5,0.4,0.7);
    transform: scaleX(0);


}

#btn:hover{
    color: #fff;

}

#btn:hover::before{
    transform: scale(1);
}
/* Keyframes for fade-in effect */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    .banner {
        height: 40vh; /* Further reduce banner height */
        margin-top: -70px; /* Adjust top margin */
        background-position: center;
    }

    .banner-text h1 {
        font-size: 24px; /* Smaller font for the heading */
    }

    .banner-text h2 {
        font-size: 18px; /* Smaller font for subheading */
    }

    .banner-text p {
        font-size: 14px; /* Smaller font size */
    }

    #btn {
        width: 140px; /* Smaller button */
        height: 40px;
        font-size: 14px; /* Adjust font size for button */
       
    }
}

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      text-align: center;
    }
    .image-container,
    .content2 {
      margin: 0 0 20px;
      animation: fadeIn 1s forwards;
      animation-delay: 0.5s;
    }
    .content2 {
      margin-bottom: 0;
    }
  }


  /* Responsive Design */
  @media (max-width: 992px) {
    .card {
      min-width: calc(50% - 40px);
    }
  }

  @media (max-width: 768px) {
    .card {
      min-width: calc(100% - 40px);
    }
  }
/*about us section*/

.container1 .heading{
    width: 85%;
    margin: auto;
    margin-top: 10px;
    text-align: center;
    background-color: black;

     

}

.container1 .heading h1{
    color: #f15b43;
    font-size: 50px;
    margin-top: 50px;

}

.wrapper1{
    width: 80%;
    margin: 15% auto;
    margin-top: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.content1{
    width: 70%;
    margin: 0px 25px;

}

.content1 h2{
    font-size: 30px;
    color: #284966;

}

.content1 p {
    color: #666;
    font-size:20px ;
    line-height: 1.5;
    margin-top: 10px;
    text-align: justify;
    text-justify: inter-word;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.content1 .btn1{
    position: relative;
    margin-top: 30px;
    text-decoration: none;
    border: 2px solid #f15b43;
    font-size: 19px;
    color: #f15b43;
    padding: 13px 16px;
    display: inline-block;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;


}

.content1 .btn1::before{
    position: absolute;
    content: "";
    border: 1px solid transparent;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f15b43;
    z-index: -1;
    transition: transform 0.7s;
    transform-origin:0 0 ;
    transition-timing-function: cubic-bezier(0.5,1.5,0.4,0.7);
    transform: scaleX(0);


}

.content1 .btn1:hover{
    color: #fff;

}

.content1 .btn1:hover::before{
    transform: scale(1);
}



.image1{
    width: 50%;
}

.image1 img{
     width: 100%;
     height:auto;

}

@media screen and (max-width:768px){
    
    .container1{
        width: 100%;
    }
    .wrapper1{
        flex-direction: column;
        margin-top: 0px;
    }
    .container1 .heading h1{
       
        font-size: 50px;
    
    }

    .content1 .image1{
        width: 100%;
        margin-top: 20px;
    }

    .content1 p {
        font-size: 20px;
        width: 100%;
        text-align: justify;
        text-justify: inter-word;

    }
    .content1 h2 {
        font-size: 25px;

    }

    .content1 .btn1{
        font-size: 16px;
        padding: 12px 14px;

    }

    

.image1{
    width: 100%;
}

/* .image1 img{
     width: 100%;
     height:auto;

} */

    /* .banner{
        background-attachment:local;
    }

    .banner2{
        background-attachment:local;
    } */

    
}

/*counter section*/


.stats-section {
    background: linear-gradient(135deg, #f15b43, #f9a56c);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

/* Stats Grid Styling */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.stats-item {
    flex: 1 1 calc(25% - 40px);
    max-width: 250px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.stats-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.stat-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-item {
        flex: 1 1 calc(50% - 20px);
        max-width: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .stats-item {
        flex: 1 1 100%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }
}  

 /* Card Slider Container */
 .card-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 50px auto;
    max-width: 1200px;
  }

  /* Card Track */
  .card-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  /* Card Styling */
  .card {
    min-width: calc(33.33% - 40px);
    margin: 0 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: scale(0.95);
    transition: all 0.3s ease;
    opacity: 0.9;
    animation: cardEntrance 1s ease-out forwards;
  }

  .card:hover {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    opacity: 1;
  }

  .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
  }

  .card-content {
    padding: 25px;
    text-align: center;
  }

  .card-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #2c3e50;
  }

  .card-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .card-content .btn {
    display: inline-block;
    padding: 10px 25px;
    background: #ff4d4d;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .card-content .btn:hover {
    background:#ff4d4d;
    transform: translateY(-2px);
  }

  @keyframes cardEntrance {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 0.9;
      transform: translateY(0);
    }
  }

  /* Arrow Buttons */
  .prev-button, .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }

  .prev-button {
    left: 20px;
  }

  .next-button {
    right: 20px;
  }

  /* Responsive Design */
  @media (max-width: 992px) {
    .card {
      min-width: calc(50% - 40px);
    }
  }

  @media (max-width: 768px) {
    .card {
      min-width: calc(100% - 40px);
    }
  }



/* footer */
.center{
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center;
}
.footer-img {
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center;
    width: 250px; /* Default size for larger screens */
    height: 250px;
    border-radius: 50%; /* Make the image circular */
    border: 2px solid #ffffff; /* Optional: Add a white border */
    object-fit: cover;
    background-color: #ffffff;

}


.containerf{
	max-width: 100%;
	margin:auto;
    padding: 0 15px; 
    box-sizing: border-box;
}
.rowf{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
.footer-col ul{
	list-style: none;
    padding: 0;
    margin: 0;
}
.footer{
	background-color: #24262b;
    padding: 70px 0;
    overflow-x: hidden;

    
}
.footer-col{
   width: 25%;
   padding: 0 70px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display:inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}
/* Copyright Section */
.footer .copyright {
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
    color: #bbbbbb;
    font-size: 14px;
    /* border-top: 1px solid #444; */
}

.footer .copyright a{
    text-decoration: none;
    text-align: center;
    padding: 12px 0;
    margin-top: 30px;
    color: #bbbbbb;
    font-size: 15px;
    border-top: 1px solid #444;
}
/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}


.logo-marquee {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    background: #f8f9fa;
}

.logo-track {
    display: flex;
    animation: logo-scroll 40s linear infinite;
    gap: 60px;
}

.logo-item {
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    height: 50px;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.logo-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

@keyframes logo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .logo-item {
        height: 35px;
        gap: 30px;
    }
    
    .logo-track {
        animation-duration: 30s;
    }
}



